home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 3.iso / bin / amIOnCDROMTree next >
Text File  |  1996-11-11  |  357b  |  20 lines

  1. #!/bin/csh -f
  2. #
  3. # script to detect if the user is on the CDROM tree
  4. # logic : keep looking for IM file up in the hierarchy
  5. #
  6.  
  7. set path = (/usr/bsd /bin /usr/bin /usr/sbin /usr/bin/X11)
  8. set curdir = `pwd`
  9.  
  10. while ( "$curdir" != "/" && "$curdir" != "." ) 
  11.  
  12.     if ( -e $curdir/IM ) then
  13.         exit 1
  14.     endif
  15.  
  16.     set curdir = `dirname $curdir`
  17.  
  18. end
  19. exit 0
  20.